home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 293_02 / mk.bat < prev    next >
DOS Batch File  |  1989-08-23  |  182b  |  7 lines

  1. if "%1" == "" cl /AC /FPi87 %FILE%
  2. if "%1" == "" goto exit
  3. if exist %1 cl /AC /FPi87 %1
  4. if exist %1 goto exit
  5. if not exist %1 cl /AC /FPi87 %1.c
  6. if not exist %1 goto exit
  7. :exit